$.each(array, function(key, value) {
if(value === "foo") {
return false; // breaks
}
});
// or
$(selector).each(function() {
if (condition) {
return false;
}
});
$(".demo").each(function() { // parse each .demo element
document.write($(this).text() + "\n"); // output their text
});
1
2
3
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});